home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zfont1.c < prev    next >
C/C++ Source or Header  |  1997-03-22  |  9KB  |  239 lines

  1. /* Copyright (C) 1991, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zfont1.c */
  20. /* Type 1 and Type 4 font creation operator */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gxfixed.h"
  25. #include "gsmatrix.h"
  26. #include "gxdevice.h"
  27. #include "gschar.h"
  28. #include "gxfont.h"
  29. #include "gxfont1.h"
  30. #include "bfont.h"
  31. #include "ialloc.h"
  32. #include "idict.h"
  33. #include "idparam.h"
  34. #include "store.h"
  35.  
  36. /* Type 1 auxiliary procedures (defined in zchar1.c) */
  37. extern int z1_subr_proc(P4(gs_font_type1 *, int, bool, gs_const_string *));
  38. extern int z1_seac_proc(P3(gs_font_type1 *, int, gs_const_string *));
  39. extern int z1_push_proc(P3(gs_font_type1 *, const fixed *, int));
  40. extern int z1_pop_proc(P2(gs_font_type1 *, fixed *));
  41.  
  42. /* Default value of lenIV */
  43. #define default_lenIV_1 4
  44. #define default_lenIV_2 (-1)
  45.  
  46. /* Private utilities */
  47. private uint
  48. subr_bias(const ref *psubrs)
  49. {    uint size = r_size(psubrs);
  50.     return (size < 1240 ? 107 : size < 33900 ? 1131 : 32768);
  51. }
  52.  
  53. /* Build a Type 1 or Type 4 font. */
  54. private int
  55. buildfont1or4(os_ptr op, build_proc_refs *pbuild, font_type ftype)
  56. {    gs_type1_data data1;
  57.     static ref no_subrs;
  58.     ref *pothersubrs = &no_subrs;
  59.     ref *psubrs = &no_subrs;
  60.     ref *pglobalsubrs = &no_subrs;
  61.     ref *pprivate;
  62.     gs_font_type1 *pfont;
  63.     font_data *pdata;
  64.     int code;
  65.  
  66.     check_type(*op, t_dictionary);
  67.     if ( dict_find_string(op, "Private", &pprivate) <= 0 ||
  68.          !r_has_type(pprivate, t_dictionary)
  69.        )
  70.       return_error(e_invalidfont);
  71.     make_empty_array(&no_subrs, 0);
  72.     if ( dict_find_string(pprivate, "OtherSubrs", &pothersubrs) > 0 )
  73.       {    if ( !r_is_array(pothersubrs) )
  74.           return_error(e_typecheck);
  75.       }
  76.     if ( dict_find_string(pprivate, "Subrs", &psubrs) > 0 )
  77.       {    if ( !r_is_array(psubrs) )
  78.           return_error(e_typecheck);
  79.       }
  80.     if ( (code = dict_int_param(op, "CharstringType", 1, 2, 1,
  81.                     &data1.CharstringType)) < 0
  82.        )
  83.       return code;
  84.     /* Get information specific to Type 2 charstrings. */
  85.     if ( data1.CharstringType == 2 )
  86.       { float dwx, nwx;
  87.  
  88.         data1.subroutineNumberBias = subr_bias(psubrs);
  89.         if ( dict_find_string(pprivate, "GlobalSubrs", &pglobalsubrs) > 0 )
  90.           { if ( !r_is_array(pglobalsubrs) )
  91.               return_error(e_typecheck);
  92.           }
  93.         data1.gsubrNumberBias = subr_bias(pglobalsubrs);
  94.         if ( (code = dict_uint_param(pprivate, "gsubrNumberBias",
  95.                      0, max_uint, data1.gsubrNumberBias,
  96.                      &data1.gsubrNumberBias)) < 0 ||
  97.          (code = dict_float_param(pprivate, "defaultWidthX", 0.0,
  98.                       &dwx)) < 0 ||
  99.          (code = dict_float_param(pprivate, "nominalWidthX", 0.0,
  100.                       &nwx)) < 0
  101.            )
  102.           return code;
  103.         data1.defaultWidthX = float2fixed(dwx);
  104.         data1.nominalWidthX = float2fixed(nwx);
  105.         { ref *pirs;
  106.           if ( dict_find_string(pprivate, "initialRandomSeed", &pirs) <= 0 )
  107.         data1.initialRandomSeed = 0;
  108.           else if ( !r_has_type(pirs, t_integer) )
  109.         return_error(e_typecheck);
  110.           else
  111.         data1.initialRandomSeed = pirs->value.intval;
  112.         }
  113.         data1.lenIV = default_lenIV_2;
  114.       }
  115.     else
  116.       { data1.subroutineNumberBias = 0;
  117.         data1.gsubrNumberBias = 0;
  118.         data1.lenIV = default_lenIV_1;
  119.       }
  120.     /* Get the rest of the information from the Private dictionary. */
  121.     if ( (code = dict_int_param(pprivate, "lenIV", -1, 255, data1.lenIV,
  122.                     &data1.lenIV)) < 0 ||
  123.          (code = dict_uint_param(pprivate, "subroutineNumberBias",
  124.                      0, max_uint, data1.subroutineNumberBias,
  125.                      &data1.subroutineNumberBias)) < 0 ||
  126.          (code = dict_int_param(pprivate, "BlueFuzz", 0, 1999, 1,
  127.                     &data1.BlueFuzz)) < 0 ||
  128.          (code = dict_float_param(pprivate, "BlueScale", 0.039625,
  129.                       &data1.BlueScale)) < 0 ||
  130.          (code = dict_float_param(pprivate, "BlueShift", 7.0,
  131.                     &data1.BlueShift)) < 0 ||
  132.          (code = data1.BlueValues.count = dict_float_array_param(pprivate,
  133.         "BlueValues", max_BlueValues * 2,
  134.         &data1.BlueValues.values[0], NULL)) < 0 ||
  135.          (code = dict_float_param(pprivate, "ExpansionFactor", 0.06,
  136.                       &data1.ExpansionFactor)) < 0 ||
  137.          (code = data1.FamilyBlues.count = dict_float_array_param(pprivate,
  138.         "FamilyBlues", max_FamilyBlues * 2,
  139.         &data1.FamilyBlues.values[0], NULL)) < 0 ||
  140.          (code = data1.FamilyOtherBlues.count = dict_float_array_param(pprivate,
  141.         "FamilyOtherBlues", max_FamilyOtherBlues * 2,
  142.         &data1.FamilyOtherBlues.values[0], NULL)) < 0 ||
  143.          (code = dict_bool_param(pprivate, "ForceBold", false,
  144.                      &data1.ForceBold)) < 0 ||
  145.          (code = dict_int_param(pprivate, "LanguageGroup", 0, 1, 0,
  146.                     &data1.LanguageGroup)) < 0 ||
  147.          (code = data1.OtherBlues.count = dict_float_array_param(pprivate,
  148.         "OtherBlues", max_OtherBlues * 2,
  149.         &data1.OtherBlues.values[0], NULL)) < 0 ||
  150.          (code = dict_bool_param(pprivate, "RndStemUp", true,
  151.                      &data1.RndStemUp)) < 0 ||
  152.          (code = data1.StdHW.count = dict_float_array_param(pprivate,
  153.         "StdHW", 1, &data1.StdHW.values[0], NULL)) < 0 ||
  154.          (code = data1.StdVW.count = dict_float_array_param(pprivate,
  155.         "StdVW", 1, &data1.StdVW.values[0], NULL)) < 0 ||
  156.          (code = data1.StemSnapH.count = dict_float_array_param(pprivate,
  157.         "StemSnapH", max_StemSnap,
  158.         &data1.StemSnapH.values[0], NULL)) < 0 ||
  159.          (code = data1.StemSnapV.count = dict_float_array_param(pprivate,
  160.         "StemSnapV", max_StemSnap,
  161.         &data1.StemSnapV.values[0], NULL)) < 0 ||
  162.     /* The WeightVector is in the font dictionary, not Private. */
  163.          (code = data1.WeightVector.count = dict_float_array_param(op,
  164.         "WeightVector", max_WeightVector,
  165.         data1.WeightVector.values, NULL)) < 0
  166.        )
  167.         return code;
  168.     /*
  169.      * According to section 5.6 of the "Adobe Type 1 Font Format",
  170.      * there is a requirement that BlueScale times the maximum
  171.      * alignment zone height must be less than 1.  Some fonts
  172.      * produced by Fontographer have ridiculously large BlueScale
  173.      * values, so we force BlueScale back into range here.
  174.      */
  175.     { float max_zone_height = 1.0;
  176.       float zone_height;
  177.       int i;
  178. #define scan_zone(z)\
  179.   for ( i = 0; i < data1.z.count; i += 2 )\
  180.     if ( (zone_height = data1.z.values[i+1] - data1.z.values[i]) > max_zone_height )\
  181.       max_zone_height = zone_height
  182.       scan_zone(BlueValues);
  183.       scan_zone(OtherBlues);
  184.       scan_zone(FamilyBlues);
  185.       scan_zone(FamilyOtherBlues);
  186.       if ( data1.BlueScale * max_zone_height > 1.0 )
  187.         data1.BlueScale = 1.0 / max_zone_height;
  188.     }
  189.     /* Do the work common to primitive font types. */
  190.     code = build_gs_primitive_font(op, (gs_font_base **)&pfont, ftype,
  191.                        &st_gs_font_type1, pbuild,
  192.                        bf_options_none);
  193.     if ( code != 0 )
  194.       return code;
  195.     /* This is a new font, fill it in. */
  196.     pdata = pfont_data(pfont);
  197.     pfont->data = data1;
  198.     ref_assign(&pdata->u.type1.OtherSubrs, pothersubrs);
  199.     ref_assign(&pdata->u.type1.Subrs, psubrs);
  200.     ref_assign(&pdata->u.type1.GlobalSubrs, pglobalsubrs);
  201.     pfont->data.subr_proc = z1_subr_proc;
  202.     pfont->data.seac_proc = z1_seac_proc;
  203.     pfont->data.push_proc = z1_push_proc;
  204.     pfont->data.pop_proc = z1_pop_proc;
  205.     pfont->data.proc_data = (char *)pdata;
  206.     return define_gs_font((gs_font *)pfont);
  207. }
  208.  
  209. /* <string|name> <font_dict> .buildfont1 <string|name> <font> */
  210. /* Build a type 1 (Adobe encrypted) font. */
  211. private int
  212. zbuildfont1(os_ptr op)
  213. {    build_proc_refs build;
  214.     int code =
  215.       build_proc_name_refs(&build,
  216.                    "%Type1BuildChar", "%Type1BuildGlyph");
  217.     if ( code < 0 )
  218.       return code;
  219.     return buildfont1or4(op, &build, ft_encrypted);
  220. }
  221.  
  222. /* <string|name> <font_dict> .buildfont4 <string|name> <font> */
  223. /* Build a type 4 (disk-based Adobe encrypted) font. */
  224. private int
  225. zbuildfont4(os_ptr op)
  226. {    build_proc_refs build;
  227.     int code = build_gs_font_procs(op, &build);
  228.     if ( code < 0 )
  229.       return code;
  230.     return buildfont1or4(op, &build, ft_disk_based);
  231. }
  232.  
  233. /* ------ Initialization procedure ------ */
  234.  
  235. BEGIN_OP_DEFS(zfont1_op_defs) {
  236.     {"2.buildfont1", zbuildfont1},
  237.     {"2.buildfont4", zbuildfont4},
  238. END_OP_DEFS(0) }
  239.